home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Hardware / ICS / Programmer / Include / ics / icsbase.h < prev   
Encoding:
C/C++ Source or Header  |  1999-09-27  |  791 b   |  38 lines

  1. /*
  2. **      icsbase.h
  3. **
  4. **      definition of ICSBase
  5. **
  6. **      (C) Copyright 1997 Wolf Faust
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #ifndef ICS_ICSBASE_H
  11. #define ICS_ICSBASE_H
  12.  
  13. #ifdef   __MAXON__
  14. #ifndef  EXEC_LIBRARIES_H
  15. #include <exec/libraries.h>
  16. #endif
  17. #else
  18. #ifndef  EXEC_LIBRARIES
  19. #include <exec/libraries.h>
  20. #endif /* EXEC_LIBRARIES_H */
  21. #endif
  22.  
  23. struct ICSBase
  24. {
  25.  struct Library         icsb_LibNode;
  26.  APTR                   icsb_SegList;
  27.  struct ExecBase       *icsb_SysBase;
  28.  struct IntuitionBase  *icsb_IntuitionBase;
  29.  struct GfxBase        *icsb_GfxBase;
  30.  struct DosLibrary     *icsb_DOSBase;
  31.  struct Library        *icsb_GadToolsBase;
  32.  struct Library        *icsb_AslBase;
  33.  struct Library        *icsb_LocaleBase;
  34.  struct Catalog        *icsb_catalog;
  35. };
  36.  
  37. #endif /* ICS_ICSBASE_H */
  38.